home *** CD-ROM | disk | FTP | other *** search
/ Aminet 39 / Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso / Aminet / util / shell / ViNCEd.lha / ViNCEd / Localize! / prefs.construct < prev    next >
Encoding:
Text File  |  2000-04-28  |  57.0 KB  |  2,415 lines

  1. ;*************************************************************************
  2. ;** Locale constructor V41.04 ViNCEd prefs part                         **
  3. ;**                                                                     **
  4. ;** This is a constructor/shell script for CreateCatalog. Please read   **
  5. ;** the instructions below carefully.                                   **
  6. ;*************************************************************************
  7. ;
  8. ;       This file has two purposes:
  9. ;
  10. ;       First it acts as a shell script that must be "execute"d to 
  11. ;       build the catalog with one command
  12. ;       Second, it tells CreateCatalog how to build the
  13. ;       catalog. Thus, this file gets a) executed by the shell
  14. ;       and b) is parsed by CreateCatalog. This is possible due to
  15. ;       the special syntax of CreateCatalog.
  16. ;       All lines starting with a semicolon or a blank space are comments
  17. ;       for CreateCatalog. Thus these lines and the lines that act as
  18. ;       a shell script are ignored by the catalog builder: The former
  19. ;       because they have the semicolon, the later because I added a
  20. ;       blank space at the beginning.
  21. ;
  22. ;       Shell script part of the catalog builder:
  23. ;       
  24. ;       The next line starts the catalog builder:
  25. ;       The arguments are: This file (instructions how to build)
  26. ;                          the output file (will be put to RAM:)
  27. ;                          the language: Please change "deutsch" to
  28. ;                               your language, i.e. "italiano" or "français".
  29. ;                          and the version/revision of the catalog.
  30. ;                               Here version 41.00 
  31. ;                (41 is internal for releases > 3.60)
  32. ;
  33. ;
  34. ;*************** Edit this line below *************************************
  35.  CreateCatalog prefs.construct ram:VNC.prefs.catalog deutsch 41 04
  36. ;                                                     ^^^^^
  37. ;                                                   This string must be
  38. ;                                                     adjusted !
  39. ;**************************************************************************
  40.  quit 
  41. ;
  42. ; End of the shell script. quit is used to prevent the shell from parsing the
  43. ; lines below.
  44. ;
  45. ;
  46. ;
  47. ; Here we use another set of CreateCatalog commands.
  48. ; The '#' command sets the string counter to a specific value.
  49. ; The '%' command sets the string length delimiter. The argument is either
  50. ; a sequence of dashes to indicate the length graphically, or the maximal
  51. ; length as a number.
  52. ;
  53. ; There's no need to change these lines.
  54. ;
  55. ; The 'lines contain the actual strings that replace the english (default) 
  56. ; strings.
  57. ; The lines starting with a semicolon are again comments and ignored
  58. ; by the catalog builder. Thus you ONLY NEED TO EDIT the lines starting with
  59. ; the apostrophe '.
  60. ;
  61. ;
  62. ; Please note that you MUST surround these strings with an additional pair
  63. ; of double quotes if you want to include leading/trailing blank spaces.
  64. ;
  65. ; The usual C style syntax is used for special charaters, like
  66. ; \r for carriage return        \n for newline
  67. ; \t for TAB                    \b for backspace
  68. ; \\ for the backslash itself. It is the same syntax that is used in the
  69. ; ViNCEd macros, so propably read this section of the guide.
  70. ;
  71. ;
  72. ; Since this is taken from the german localization, I put the original
  73. ; english strings ON TOP of the german ones, plus some information
  74. ; when this string gets printed/displayed.
  75. ;
  76. ;
  77. ; Since A LOT happened here with V41, it's best to work thru the complete
  78. ; file. The main part of the strings changed, very little remains un-
  79. ; changed. Urgh.
  80. ; Sorry for the mess, but I really had to cleanup the editor....
  81. ;
  82. ;
  83. ;***************************************************************************
  84. ;Strings of the startup-segment
  85. ;***************************************************************************
  86. ; Start with string #1
  87. #1
  88. ;
  89. ; Limit the string size to 120 characters
  90. %120
  91. ;
  92. ;unkown command.                                Printed if you pass an illegal argument to SetVNC
  93. 'unbekanntes Kommando.
  94.  
  95. ;required subcommand missing                    Printed if a subcommand needs a sub argument that is missing.
  96. 'benötigtes Teilkommando fehlt.
  97.  
  98. ;unknown subcommand                             Printed if the parser encountered a sub command (like the FROM to LOAD or the TO for SAVE) that it does not understand
  99. 'unbekanntes Teilkommando.
  100.  
  101. ;required argument missing                      Printing if a command takes an argument that is not present
  102. 'benötigtes Argument fehlt.
  103.  
  104. ;boolean value neither ON nor OFF.              The parser expected an ON or OFF as argument.
  105. 'boolscher Wert weder ON noch OFF.
  106.  
  107. ;invalid numeric value.                         The parser expected a number. The one supplied was invalid
  108. 'ungültiger Zahlenwert.
  109.  
  110. ;out of memory                                  SetVNC has not enough memory.
  111. 'Speicher fehlt.
  112.  
  113. ;Failed parsing "%s" : %s \n\r                  Printed if the parsing of an arugment failed. 
  114. ;The first %s is substituted with the argument name, the second with the failure type, from above.
  115. ;The \n\r code is a newline command. 
  116. ;(Here both, newline plus line feed since someone may have turned ViNCEd's
  117. ; auto CR off)
  118. 'Fehler beim Bearbeiten von "%s" : %s\n\r
  119.  
  120. ;SetVNC failure: Need AT LEAST vnc.library version 41.60.       Printed if SetVNC failed to open the vnc.library
  121. 'SetVNC Fehler: Es wird MINDESTENS die Version 41.60 der vnc.library benötigt.\n\r
  122.  
  123. ;SetVNC failure: Can't open needed libraries.                   Printed if some generic libs are missing (asl/dos/gfx/intuition)
  124. 'SetVNC Fehler: Benötigte Bibliotheken können nicht geöffnet werden.\n\r
  125.  
  126. ;SetVNC failure: Need a ViNCEd stream as output handle.         Printed if SetVNC found a non-VINCEd stream, i.e. hasn't been called from ViNCEd.
  127. 'SetVNC Fehler: Ein ViNCEd-Fenster wird als Ausgabekanal benötigt.\n\r
  128.  
  129. ;"DOS failed    "               A generic failure message if some DOS function returned an error
  130. '"DOS Fehler    "
  131.  
  132. ;%s: error code %ld.\n\r        A generic error code if no standard fail message of the DOS could be found.
  133. ;       %s is substituted with the text above, and %ld is the DOS error number.
  134. '%s: Fehler-Code %ld.\n\r
  135.  
  136. ;"Usage: SetVNC "               The title of the text that is printed if you specify "?" as argument
  137. '"Aufruf: SetVNC "
  138.  
  139. %----------%
  140. ;" O.K. "                       This text is put into the fail requester (it has only one button)
  141. '" O.K. "
  142.  
  143. ;***************************************************************************
  144. ;Strings of the prefs-loader
  145. ;***************************************************************************
  146. ;
  147. ;these strings are printed if the loading/saving of some prefs can't be done
  148. ;
  149. %120
  150. ;
  151. ;
  152. #17
  153. ;SetVNC failure: No memory for preferences.                     Due to a lack of memory ViNCed can't build them
  154. 'SetVNC-Fehler: Speicher für die Voreinstellungen fehlt.\n\r
  155. ;
  156.  
  157. ;SetVNC failure: Can't get preferences from active window.      SetVNC can't load the prefs of the window it was invoked in.
  158. 'SetVNC-Fehler: Fenster-Voreinstellungen konnten nicht geladen werden.\n\r
  159. ;
  160.  
  161. ;SetVNC failure: Can't get global preferences.                  SetVNC can't load the global ("Used") prefs.
  162. 'SetVNC-Fehler: Die globalen Voreinstellungen konnten nicht geladen werden.\n\r
  163. ;
  164.  
  165. ;SetVNC failure: Can't get default preferences.                 The defaults were unavailable.
  166. 'SetVNC-Fehler: Die Standard-Voreinstellungen konnten nicht geholt werden.\n\r
  167. ;
  168.  
  169. ;SetVNC failure: Can't get preferences from file                SetVNC failed to load a given prefs file.
  170. ;The file name is printed behind this text
  171. '"SetVNC-Fehler: Kann die Voreinstellungen nicht lesen von der Datei "
  172. ;
  173.  
  174. ;SetVNC failure: Can't get last saved preferences.              SetVNC failed to load the prefs beeing saved as global prefs.
  175. 'SetVNC-Fehler: Die zuletzt gespeicherten Voreinstellungen konnten nicht gelesen werden.\n\r
  176. ;
  177.  
  178. ;SetVNC failure: Can't construct macro list.                    The list of the macros can't be setup
  179. 'SetVNC-Fehler: Kann die Makro-Liste nicht erstellen.\n\r
  180. ;
  181.  
  182. ;SetVNC failure: Can't build macros from list.                  The list of the macros can't be installed into the prefs.
  183. 'SetVNC-Fehler: Kann die Makro-Liste nicht in die Voreinstellungen einbauen.\n\r
  184. ;
  185.  
  186. ;SetVNC failure: Can't install preferences into active window.  The window SetVNC was invoked in did not accept the new prefs.
  187. 'SetVNC-Fehler: Kann die Einstellungen des aktiven Fensters nicht ändern.\n\r
  188. ;
  189.  
  190. ;SetVNC failure: Can't install preferences into library base.   The prefs have been rejected as global ("Used") prefs.
  191. 'SetVNC-Fehler: Kann die Voreinstellungen der Bibliothek nicht ändern.\n\r
  192. ;
  193.  
  194. ;SetVNC failure: Can't save preferences to disk.        The disk I/O operation failed when trying to safe the prefs
  195. 'SetVNC-Fehler: Die Voreinstellungen konnten nicht abgespeichert werden.\n\r
  196. ;
  197.  
  198. ;***************************************************************************
  199. ;Strings of the shell-commands
  200. ;***************************************************************************
  201. ;
  202. ;Strings used for one of the many in-place actions.
  203. ;
  204. %120
  205. ;
  206. #35
  207. ;
  208. ;
  209. ;The specified number of lines is invalid.      The size of a buffer given to SetVNC is too large or too small.
  210. 'Die angegebene Zeilenanzahl ist außerhalb des erlaubten Bereiches.\n\r
  211. ;
  212.  
  213. ;The specified time interval is invalid.        The time (blink speed/refresh interval etc..) is too short or too long.
  214. 'Das angegebene Zeitintervall ist außerhalb des erlaubten Bereiches.\n\r
  215. ;
  216.  
  217. ;
  218. ;The specified monitor does not exist.          The monitor name was not found in the monitor data base.
  219. 'Der angegebene Monitortreiber existiert nicht.
  220. ;
  221.  
  222. ;
  223. ;The 1.2/1.3 workbench does not support monitor names.\n\rUse MONITORID instead.\n\r
  224. ;SetVNC complains of a MONITOR argument which is useless with WB 1.2/1.3 since the monitor data
  225. ;base was introduced in 2.0
  226. 'Die 1.2/1.3 Workbench unterstützt keine Monitornamen.\n\rVerwenden Sie stattdessen MONITORID.\n\r
  227. ;
  228.  
  229. ;The specified qualifier is invalid.\n\r
  230. ;The user gave a qualifier for the icon drop modifier which is useless (like caps or the "number pad" qualifier).
  231. 'Der angegebene Qualifier ist ungültig.\n\r
  232. ;
  233.  
  234. ;The specified position is invalid.\n\r
  235. ;The requester position given was out of range.
  236. 'Die Positionsangabe ist ungültig.\n\r
  237. ;
  238.  
  239. ;The specified cache size is invalid.\n\r
  240. ;The number of directories in the TAB expansion cache is out of range.
  241. 'Die angegebene Größe des Caches ist ungültig.\n\r
  242. ;
  243. ;
  244.  
  245. ;***************************************************************************
  246. ;Strings of the mounter
  247. ;***************************************************************************
  248. ;
  249. ; This string is used by the "MOUNT" command on failure
  250. ;
  251. #64
  252. ;
  253. %120
  254. ;
  255. ;"Can't mount ViNCEd as "               Printed if mount failed.
  256. ;The device name which should be replaced by VNC: (usually CON:) is 
  257. ;printed BEHIND this text.
  258. '"ViNCEd kann nicht gemountet werden unter "
  259. ;
  260. ;
  261.  
  262. ;***************************************************************************
  263. ;Strings for the job control functions fg,bg
  264. ;***************************************************************************
  265. ;
  266. ;
  267. #72
  268. ;
  269. %120
  270. ;
  271. ;SetVNC failure : Nothing found to put in foreground instead.\n\r       SetVNC's bg failed since
  272. ;there's no process that can't be put in foreground to replace the current one.
  273. 'SetVNC-Fehler: Es fehlt ein Prozeß, der stattdessen in den\n\rVordergrund geschickt werden kann.\n\r
  274.  
  275. ;SetVNC failure : Can't send this process to foreground.\n\r            The process can't be set
  276. ;to foreground for some reason.
  277. 'SetVNC-Fehler: Dieser Prozeß kann nicht in den Vordergrund geschickt werden.\n\r
  278.  
  279. ;SetVNC failure : CLI process not found.\n\r                            The CLI number of the process
  280. ;to set to foreground does not exist.
  281. 'SetVNC-Fehler: Der angegebene CLI-Prozeß existiert nicht.\n\r
  282.  
  283. ;SetVNC failure : This process is not under my control.\n\r             The process corresponding to
  284. ;the given CLI number exists, but was not under control of the ViNCEd process in the window
  285. ;SetVNC was invoked in - propably it is not under control of ViNCEd at all, or propably it runs
  286. ;in a different window.
  287. 'SetVNC-Fehler: Der angegebene Prozeß ist nicht unter\n\rder Kontrolle dieses Fensters.\n\r
  288.  
  289. ;***************************************************************************
  290. ;Strings for the guide-loading module
  291. ;***************************************************************************
  292. ;
  293. ;
  294. #80
  295. ;
  296. %120
  297. ;
  298. ;SetVNC failure: Can't load help browser.\n\r                           The help program (usually MultiView)
  299. ;can't been loaded. Propably it is missing or its location (found in the "default tool") is
  300. ;wrong
  301. 'SetVNC-Fehler: Kann den Hilfstext-Anzeiger nicht laden.\n\r
  302.  
  303. ;SetVNC failure: Can't find help database.\n\r          SetVNC was unable to locate the
  304. ;VNC.guide. It's location is kept in the tooltypes of the SetVNC program.
  305. 'SetVNC-Fehler: Kann den Hilfetext nicht finden.\n\r
  306.  
  307.  
  308. ;***************************************************************************
  309. ;Strings used by the prefs editor
  310. ;***************************************************************************
  311. ;
  312. ;
  313. %160
  314. ;
  315. #128
  316. ;
  317. ;SetVNC failure : Can't install the prefs requester.\n\r
  318. ;Printed if SetVNC failed to build its requester into the window.
  319. 'SetVNC-Fehler: Der Voreinstellungs-Requester\n\rkann nicht erstellt werden.\n\r
  320. ;
  321.  
  322. ;SetVNC failure : Can't build requester page.\n\r
  323. ;Printed if SetVNC failed to draw a "page" of the prefs, i.e. construction
  324. ;of the gadgets failed.
  325. 'SetVNC-Fehler: Die Voreinstellungs-Seite\n\rkann nicht aufgebaut werden.\n\r
  326. ;
  327.  
  328. ;SetVNC failure : Can't write string back into prefs.
  329. ;Printed if some of the strings (usually the macros) can't be re-installed
  330. ;to the prefs.
  331. 'SetVNC-Fehler: Eine Änderung kann nicht in die\n\rVoreinstellungen zurückgeschrieben werden.\n\r
  332. ;
  333.  
  334. ;Please locate guide :
  335. ;This is the title of the file requester that appears to choose the VNC.Guide
  336. 'Bitte die Hilfe-Datei auswählen :
  337. ;
  338.  
  339. ;Please locate the guide path\n\rin the "System" menu.\n\r
  340. ;The contents of a failure requester in case the user requested for help,
  341. ;but SetVNC does not yet know the location of the VNC.guide.
  342. 'Bitte zuerst die Hilfe-Datei\n\rauf der "System"-Seite einstellen.\n\r
  343. ;
  344.  
  345. ;
  346. #134
  347. ;a little gap here...
  348. ;
  349. ;The font name is invalid.\n\rPlease specify it as <name>.<size>\n\r
  350. ;SetVNC complains about an invalid font name in the font string gadget
  351. ;of the window page.
  352. 'Der Schriftname ist ungültig.\n\rBitte geben Sie ihn als <Name>.<Größe> an.\n\r
  353. ;
  354.  
  355. ;The specified font cannot be found.\n\r
  356. ;SetVNC can't find the font the user requested.
  357. 'Die angegebene Schrift wurde nicht gefunden.\n\r
  358. ;
  359.  
  360. ;The specified monitor does not exist.\n\r
  361. ;The monitor id in the monitor string gadget
  362. 'Der angegebene Monitor wurde nicht gefunden.\n\r
  363. ;
  364.  
  365. ;ASL.library V37 is missing.\n\r
  366. ;SetVNC needs ASL 37.xx for the font requester.
  367. 'Die ASL.library V37 fehlt.\n\r
  368. ;
  369.  
  370. ;ASL.library V38 needed.\n\r
  371. ;The V38 version of ASL must be present for the screen mode requester.
  372. 'Die ASL.library V38 wird benötigt.\n\r
  373. ;
  374.  
  375. %30
  376. ;Select default font:
  377. ;The title of the font requester.
  378. 'Standardzeichensatz wählen:
  379. ;
  380.  
  381. ;Default monitor ID:
  382. ;The title of the screen mode requester
  383. 'Standardmonitor wählen:
  384. ;
  385.  
  386. %160
  387. ;Can't create font requester.\n\r
  388. ;ASL returned a failure building the font requester, for what reason ever.
  389. 'Der Zeichensatzrequester\n\r kann nicht aufgebaut werden.\n\r
  390. ;
  391.  
  392. ;Can't create screen mode requester.\n\r
  393. ;ASL failed to construct the screen mode requester.
  394. 'Der Monitorrequester kann\n\rnicht aufgebaut werden.\n\r
  395. ;
  396.  
  397.  
  398. %------------------%
  399. ;(Invalid function)
  400. ;SetVNC found an invalid function for the currently defined key
  401. '(Ungültig)
  402. ;
  403.  
  404. ;invalid
  405. ;Invalid raw key qualifier for the keymap definition
  406. 'ungültig
  407. ;
  408.  
  409. ;
  410. %255
  411. ;Keyboard definition table\n\rfull, sorry! Remove some\n\rdefinitions and try again.\n\r
  412. ;The keymap definition table is overful. Like it says...
  413. 'Die Tastaturdefinition ist\n\rzu umfangreich! Bitte entfer-\n\rnen Sie einige Funktionen\n\rund probieren Sie nochmal.\n\r
  414. ;
  415.  
  416. %40
  417. ;The hailing text of the prefernces save requester
  418. ;Save Prefs to:
  419. 'Abspeichern unter:
  420. ;
  421. ;
  422. ;The hailing text of the preferences load requester
  423. ;Load Prefs from:
  424. 'Einladen von:
  425.  
  426. ;
  427. #160
  428. %160
  429. ;
  430. ;SetVNC failure : Out of chip mem for images.\n\r
  431. ;Chip memory failed for the magnification of the title picture
  432. ;(ViNCEd-logo & the Elf & THOR-Software text)
  433. 'SetVNC-Fehler: Chip-Speicher für die Bilder fehlt.\n\r
  434. ;
  435.  
  436. ;
  437. %27
  438. ;
  439. ;(undefined)
  440. ;An undefined key in the keymap definition listview
  441. '(nicht belegt)
  442. ;
  443.  
  444. ;***************************************************************************
  445. ;Qualifier names
  446. ;***************************************************************************
  447. ;
  448. ; The next few strings are the qualifier names that appear
  449. ; in the text field of the second keyboard page for
  450. ; browsing the keyboard functions.
  451. ; Please try to keep them as short as possible because the 
  452. ; space is limited.
  453. ;
  454. %-----------%
  455. ;
  456. #176
  457.  
  458. ;LShift        the left shift key
  459. 'LShift
  460.  
  461. ;RShift        the right shift key
  462. 'RShift
  463.  
  464. ;Shift        either shift key
  465. 'Shift
  466.  
  467. ;LAlt        the left alternate key
  468. 'LAlt
  469.  
  470. ;RAlt        the right alternate key
  471. 'RAlt
  472.  
  473. ;Alt        either alt key
  474. 'Alt
  475.  
  476. ;LAmiga        the left amiga (left command, or commodore key on some
  477. ;        keyboards
  478. 'LAmiga
  479.  
  480. ;RAmiga        the right amiga (or right command) key
  481. 'RAmiga
  482.  
  483. ;Ctrl        the control key
  484. 'Ctrl
  485.  
  486. ;NumL        the function is only available if numlock is active.
  487. ;        again, this is NOT NECESARELY related to the numeric
  488. ;        keypad. NumLock is a qualifier like CapsLock that is
  489. ;        kept by ViNCEd and toggled by a special keyboard function.
  490. 'NumL
  491.  
  492. ;***************************************************************************
  493. ;The page names
  494. ;***************************************************************************
  495. ;
  496. ; The next ones are the page names that are printed in the
  497. ; top row of each page. PLEASE KEEP THEM VERY SHORT, since the
  498. ; room is limited.
  499. ;
  500. ;
  501. ;Page-Names
  502. ;
  503. %----------%
  504. ;
  505. #192
  506. ;About          Title of the page that contains the logo.
  507. 'Über
  508.  
  509. ;Macros         The macros/buttons setup pages
  510. 'Makros
  511.  
  512. ;Keyboard          The keyboard setup pages
  513. 'Tastatur
  514.  
  515. ;Edit           Lots of flags for the editor behaiviour
  516. 'Edit
  517.  
  518. ;Shell          Lots of stuff for the shell:TAB Expansion plus some more
  519. 'Shell
  520.  
  521. ;Window         The page to setup window related stuff, and custom screens (new to 40.30)
  522. 'Fenster
  523.  
  524. ;Timing         Blink speeds, rebuild delay setup
  525. 'Timing
  526.  
  527. ;System         A lot of internal system settings (system macros & flags)
  528. 'System
  529.  
  530. ;***************************************************************************
  531. ;Strings used by the on-line help
  532. ;***************************************************************************
  533. ;
  534. ; These strings are used whenever the user requested help thru one
  535. ; of the "HELP" buttons on the pages and the help failed for some
  536. ; reason. They are put into requesters with an "O.K." button.
  537. ; The text for the button is in one of the strings on top
  538. ;
  539. %160
  540. ;
  541. #208
  542. ;SetVNC failure : Need amigaguide.library V34 or better.\n\r
  543. ;The amigaguide.library which is used to display the VNC.guide is
  544. ;missing
  545. 'SetVNC-Fehler: Es wird die amigaguide.library\n\rVersion 34 oder besser benötigt.\n\r
  546.  
  547. ;SetVNC failure : Can't open the specified guide file.\n\r
  548. ;amigaguide.library failed to open the requested guide. Propably it is 
  549. ;missing, or the location (setup by in the system page) is not correct,
  550. ;or maybe it's the wrong file
  551. 'SetVNC-Fehler: Die angegebene Hilfe-Datei kann nicht geöffnet werden.\n\r
  552.  
  553. ;SetVNC failure : Can't find the requested help node.\n\r
  554. ;The help node requested is not in the guide. Propably the guide
  555. ;must be updated, since I added some nodes to it in the past...
  556. 'SetVNC-Fehler: Der benötigte Hilfe-Text fehlt.\n\r
  557.  
  558. ;"SetVNC failure : "
  559. ;Some error condition has occured. The string amigaguide returned as
  560. ;failure code is appended to this one and forms the complete fail
  561. ;message.
  562. '"SetVNC-Fehler: "
  563. ;
  564. ;Unknown amigaguide failure
  565. ;This one gets appended to the string on top if amigaguide did not
  566. ;return a readable failure code
  567. 'Unbekannter AmigaGuide-Fehler
  568.  
  569. ;***************************************************************************
  570. ;Strings used by the buffer load/save module.
  571. ;***************************************************************************
  572. ;
  573. ; These strings are used by the buffer saving/loading routine
  574. ; i.e. subcommands SetVNC get / put
  575. ;
  576. %50
  577. ;
  578. #224
  579. ;***Break\n\r
  580. ;Printed if the loading gets aborted
  581. '*** Abbruch\n\r
  582.  
  583. ;
  584. ;little gap here...
  585. ;
  586. #229
  587. ;
  588. %50
  589. ;
  590. ;
  591. ;The next strings are inserted as names of the failure operation
  592. ;this is the first "%s" in the text below.
  593. ;
  594. ;The first text is shown if the history can't be saved: 
  595. ;ViNCed failed to... (text goes here)
  596. ;save the history
  597. 'die History abspeichern
  598. ;
  599. ;Same for the window contents:
  600. ;save the line buffer
  601. 'den Fensterinhalt speichern
  602. ;
  603. ;Loading the history failed here
  604. ;load the history
  605. 'die History einladen
  606. ;
  607. ;Loading the screen failed
  608. ;load the line buffer
  609. 'den Fensterinhalt laden
  610. ;
  611. ;
  612. %160
  613. ;
  614. ;This is the first failure requester body. The first "%s" here is replaced
  615. ;by one of the strings shown above, related to which operation failed.
  616. ;The second "%s" is the file name.
  617. ;Try to formulate this in a way that you get a complete sentence that
  618. ;makes some sense! Note the escaped line feeds at the end!
  619. ;SetVNC failed to %s.\
  620. ;\rOut of memory while processing %s.\n\r
  621. 'SetVNC konnte nicht %s,\
  622. \res fehlt Speicher.\n\r
  623. ;
  624. ;
  625. ;The next one is printed if a file can't be opened. The first "%s" is
  626. ;replaced with one of the four operation strings above, the second
  627. ;"%s" is the file name.
  628. ;SetVNC failed to %s:\
  629. ;\rCan't open %s.\n\r
  630. 'SetVNC konnte nicht %s:\
  631. \r%s kann nicht geöffnet werden.\n\r
  632. ;
  633. ;
  634. ;The same, but the failure reason is this time located in a
  635. ;read error
  636. ;SetVNC failed to %s:\
  637. ;\rCan't read %s.\n\r
  638. 'SetVNC konnte nicht %s:\
  639. \r%s kann nicht gelesen werden.\n\r
  640. ;
  641. ;
  642. ;Again the same, but writing failed:
  643. ;SetVNC failed to %s: Can't write %s.\n\r
  644. 'SetVNC konnte nicht %s:\
  645. \r%s kann nicht geschrieben werden.\n\r
  646. ;
  647. ;
  648. ;And last but not least: A generic text if the failure
  649. ;condition is unkown. A DOS error code is appended.
  650. ;SetVNC failed to %s:\n\rUnknown reason, can't process %s."
  651. 'SetVNC konnte nicht %s:\
  652. \rFehlerursache unbekannt, %s\
  653. \rkann nicht bearbeitet werden.
  654. ;
  655. ;
  656. ;
  657. ;
  658. ;***************************************************************************
  659. ;Strings used in the pages
  660. ;***************************************************************************
  661. ;
  662. ; the next strings are put into the pages, mostly as
  663. ; gadget names. So please try if the strings are "short enough" to
  664. ; fit into the buttons. The spacing is *worst* for fixed-width fonts
  665. ; but the actual point size does not matter since everything gets
  666. ; rescaled automagically. Proportional fonts tend to give a
  667. ; more relaxed spacing, so you should try this with topaz.8
  668. ; although this font is usually "too tiny".
  669. ;
  670. ;***************************************************************************
  671. ;Strings on the second main save to/load from page
  672. ;***************************************************************************
  673. ;
  674. ;
  675. #260
  676. ;
  677. ;
  678. %----------------------%
  679. ;
  680. ;
  681. ;Save to File...        Save preferences to a user-selectable file
  682. 'Speichern unter...
  683. ;
  684. ;
  685. ;Load from File...        Load preferences from a user-selectable file
  686. 'Lade Einstellungen...
  687. ;
  688. ;
  689. ;***************************************************************************
  690. ;Strings common to all pages: The bottom bar
  691. ;***************************************************************************
  692. ;
  693. #262
  694. ;
  695. ;Things are a bit tight here...
  696. ;
  697. %-----------%
  698. ;
  699. ;
  700.  
  701. ;Save                Save prefs to ENVARC:
  702. 'Speichern
  703.  
  704. ;Use                            Use prefs globally
  705. 'Benutzen
  706.  
  707. ;To Window                      Try in window SetVNC was called from only.
  708. 'im Fenster
  709.  
  710. ;Cancel                         Abort SetVNC without saving
  711. 'Abbrechen
  712.  
  713. ;***************************************************************************
  714. ;Buttons in the about page
  715. ;***************************************************************************
  716. ;
  717. ;
  718. ;Last Saved                     Reload prefs from default location
  719. 'Zuvor gsp.
  720.  
  721. ;Last Used                      Reload global prefs
  722. 'Benutzten
  723.  
  724. ;Window                         Reload prefs from the window SetVNC was invoked from.
  725. 'Fenster
  726.  
  727. ;Default                        Load defaults.
  728. 'Standard
  729.  
  730. %40
  731. ;Restore settings from:         This text is put in front of the button above. Propably this
  732. ;together with the gadget text should form a sentence.
  733. 'Voreinstellungen einlesen vom :
  734.  
  735. %-----------%
  736. ;About                          Loads the main node of the VNC.guide.
  737. 'Über...
  738.  
  739. ;***************************************************************************
  740. ;Buttons in the macros pages
  741. ;***************************************************************************
  742. ;
  743. ;
  744. ;
  745. #272
  746. %36
  747. ;ViNCEd Macros Page 1 (of 3) :          The page title, giving the name 
  748. ;of the page, the number if there's more than one page for the topic
  749. ;plus the total number of pages for this topic.
  750. 'ViNCEd Makros Seite 1 (von 3) :
  751.  
  752. %-----------%
  753. ;Help...                                Common to all pages: The HELP button
  754. ;it loads the VNC.Guide and displays the node for the page this button is on.
  755. 'Hilfe...
  756.  
  757. ;Macro 0                        These gadgets just count thru the
  758. ;number of macros. 0-4 are on the first page
  759. 'Makro 0
  760.  
  761. ;Macro 1
  762. 'Makro 1
  763.  
  764. ;Macro 2
  765. 'Makro 2
  766.  
  767. ;Macro 3
  768. 'Makro 3
  769.  
  770. ;Macro 4
  771. 'Makro 4
  772.  
  773. ;***************************************************************************
  774. ;
  775. ;Second macro page
  776. ;
  777. #288
  778. %36
  779. ;ViNCEd Macros Page 2 (of 3) :
  780. 'ViNCEd Makros Seite 2 (von 3) :
  781.  
  782. %-----------%
  783. ;Help
  784. 'Hilfe...
  785.  
  786. ;Macro 5
  787. 'Makro 5
  788.  
  789. ;Macro 6
  790. 'Makro 6
  791.  
  792. ;Macro 7
  793. 'Makro 7
  794.  
  795. ;Macro 8
  796. 'Makro 8
  797.  
  798. ;Macro 9
  799. 'Makro 9
  800.  
  801. ;***************************************************************************
  802. ;
  803. ;Third page
  804. ;
  805. #304
  806. %36
  807. ;ViNCEd Macros Page 3 (of 3) :
  808. 'ViNCEd Makros Seite 3 (von 3) :
  809.  
  810. %-----------%
  811. ;Help...
  812. 'Hilfe...
  813.  
  814.  
  815. %--------------%
  816. ;Button title :            Title of the button to appear in the window
  817. 'Titel : 
  818.  
  819.  
  820. ;"Key : F%ld "            Name of the key to use. 
  821. ;NOTE the trailing space!
  822. ;%ld is replaced by a number between 1 and 10
  823. '"Taste : F%ld "
  824.  
  825. %-----------%
  826. ;Remove                The remove function button: 
  827. ;                removes the button from the definition list
  828. 'Entfernen
  829. ;
  830.  
  831. ;Insert                Insert a button into the list
  832. ;
  833. 'Einfügen
  834. ;
  835.  
  836. %--------------%
  837. ;Command :
  838. ;The macro body. This is inserted and executed by the shell
  839. 'Kommando :
  840. ;
  841.  
  842. %-----------%
  843. ;« Prev
  844. ;Move to the previous button
  845. '« Zurück
  846.  
  847. ;Next »
  848. ;Move to the next button
  849. 'Vorwärts »
  850.  
  851. ;***************************************************************************
  852. ;Buttons in the keyboard page
  853. ;***************************************************************************
  854. ;
  855. ; the first keyboard page
  856. ;
  857. #320
  858. %36
  859. ;
  860. ;ViNCEd Keyboard Page 1 (of 2) :
  861. 'ViNCEd Tastatur Seite 1 (von 2) :
  862.  
  863. %-----------%
  864. ;Help...
  865. 'Hilfe...
  866.  
  867.  
  868. %------------------------%
  869. ;by ASCII value
  870. ;match the key by its ASCII value, not by its raw key
  871. 'ASCII Code
  872.  
  873. %----------%
  874. ;Key :
  875. ;The keyboard requester gadget label
  876. 'Taste :
  877.  
  878. %24
  879. ;Left Shift
  880. ;the left shift keyboard qualifier
  881. 'Shift links
  882.  
  883. ;Right Shift
  884. ;the right shift keyboard qualifier
  885. 'Shift rechts
  886.  
  887. ;Left Alt
  888. ;the left alternate key
  889. 'Alt links
  890.  
  891. ;Right Alt
  892. ;the right alternate key
  893. 'Alt rechts
  894.  
  895. ;Left Amiga
  896. ;the left amiga key
  897. 'Amiga links
  898.  
  899. ;Right Amiga
  900. ;the right Amiga key
  901. 'Amiga rechts
  902.  
  903. ;Ctrl
  904. ;the control key
  905. 'Ctrl
  906.  
  907. ;NumL only
  908. ;this function is only available if NumLock is active
  909. 'nur mit NumLock
  910.  
  911. ;***************************************************************************
  912. ;
  913. ; the second keyboard page
  914. ;
  915. #336
  916. %36
  917. ;
  918. ;ViNCEd Keyboard Page 2 (of 2) :
  919. 'ViNCEd Tastatur Seite 2 (von 2) :
  920.  
  921. %-----------%
  922. ;Help...
  923. 'Hilfe...
  924.  
  925. ;Accept
  926. ;Accept the changes made and use the definition
  927. 'Übernehmen
  928. ;
  929.  
  930. ;« Prev Key
  931. ;browse the previous key binding of the function selected from the
  932. ;left hand side listview
  933. '« Zurück
  934.  
  935. ;Next Key »
  936. ;browse the next key binding of the selected function
  937. 'Nächste »
  938.  
  939. ;***************************************************************************
  940. ;Buttons in the edit pages
  941. ;***************************************************************************
  942. ;
  943. ;These strings are used in the four pages for editor features.
  944. ;
  945. ;
  946. %36
  947. #352
  948. ;
  949. ;ViNCEd Edit Page 1 (of 4) :                    The title
  950. 'ViNCEd Editor Seite 1 (von 4) :
  951.  
  952. %-----------%
  953.  
  954. ;Help...
  955. 'Hilfe...
  956.  
  957. %48
  958. ;Unrestricted cursor movement
  959. ;Same as the "DOS Cursor mode" in the menu. Used to move the cursor 
  960. ;like the DOS, without restrictions. For example, backspace does not
  961. ;stop on the shell prompt if this is turned on.
  962. 'Uneingeschränkte Cursorbewegung
  963.  
  964. ;Don't scroll into the border
  965. ;Enable hard window scroll borders. Prevent the cursor from goining into
  966. ;"blank" lines and stop scrolling at these boundaries.
  967. 'Nicht in den Rand scrollen
  968.  
  969. ;XTerm cursor mode
  970. ;The cursor gets frozen and does not move if you scroll the window or
  971. ;mark a block
  972. 'Cursorbewegung wie im XTerm/CON:
  973.  
  974. ;Rigid XTerm cursor
  975. ;If selected, the cursor position can't be set with a mouse click
  976. ;if the XTerm mode is enabled. Ignored if XTerm mode is not set.
  977. 'Starrer XTerm-Cursor
  978.  
  979. ;Numeric keypad cursor control
  980. ;Use the numeric keypad for cursor and history movement, not for number
  981. ;input. 8 and 2 replace ALT+cursor, 4 and 6 the left and right cursor keys
  982. ;7 and 1 scroll to the top / end of the buffer, 9 and 3 scroll upwards and
  983. ;downwards one page. 5 moves to the end of the line, and 0 toggles 
  984. ;overwrite/insert mode
  985. 'Cursorsteuerung durch Ziffernblock
  986.  
  987.  
  988. ;***************************************************************************
  989. ;
  990. ; second edit page
  991. ;
  992. %36
  993. #368
  994. ;ViNCEd Edit Page 2 (of 4) :
  995. 'ViNCEd Editor Seite 2 (von 4) :
  996.  
  997. %-----------%
  998. ;Help...
  999. 'Hilfe...
  1000.  
  1001. %48
  1002.  
  1003. ;Underline cursor
  1004. ;instead of a block cursor
  1005. 'Unterstrich-Cursor
  1006.  
  1007. ;Blinking cursor
  1008. ;make the cursor blink. Speed is setup in the timing page
  1009. 'Blinkender Cursor
  1010.  
  1011. ;Don't write printed text into clipboard
  1012. ;Like "Cut inputs only" in the menu: Put only user input into the clipboard
  1013. 'Gedruckten Text nicht in die Zwischenablage
  1014.  
  1015. ;Implicit copy after text marking
  1016. ;Copy the marked area immediately into the clipboard, don't wait for a copy
  1017. 'Markierten Text sofort in die Zwischenablage
  1018.  
  1019. ;Disable middle mouse button
  1020. ;Use the MMB for other programs, not for unix like clipboard control
  1021. ;The replacement Ctrl+Left works, however
  1022. 'Mittlere Maustaste nicht verwenden
  1023.  
  1024.  
  1025. ;***************************************************************************
  1026. ;
  1027. ; third edit page
  1028. ;
  1029. %36
  1030. #384
  1031. ;ViNCEd Edit Page 3 (of 4) :
  1032. 'ViNCEd Editor Seite 3 (von 4) :
  1033.  
  1034. %-----------%
  1035. ;Help...
  1036. 'Hilfe...
  1037.  
  1038. %48
  1039.  
  1040. ;ANSI colors as default
  1041. ;Use the ANSI coloring sheme by default. Can be enabled by hand with the
  1042. ;CSI >?8h sequence, see the guide for more on that.
  1043. 'ANSI-Farben als Voreinstellung
  1044.  
  1045. ;Inverse ANSI coloring
  1046. ;Swap the meaning of ANSI black and white for better readability. Does
  1047. ;work ONLY in the ANSI mode.
  1048. 'Invertierte ANSI-Farben
  1049.  
  1050. ;Standard CR insertion at start of line
  1051. ;What happends if return gets pressed at the beginning of a line
  1052. ;If this is turned on, a RETURN key press is not special at the beginning of
  1053. ;a line. If turned off, it will insert a line on top instead of below.
  1054. 'Kein Sondermodus für CR am Zeilenanfang
  1055.  
  1056.  
  1057. ;Disable BS at start of line
  1058. ;Do not join lines if BS is pressed at the start of the line. Ignore
  1059. ;it instead!
  1060. 'Backspace am Zeilenanfang ignorieren
  1061.  
  1062.  
  1063. ;Overwrite Text
  1064. ;Insertion mode (off) vs. overwrite mode (on):
  1065. 'Text überschreiben
  1066.  
  1067. ;***************************************************************************
  1068. ;
  1069. ; forth edit page
  1070. ;
  1071. %36
  1072. #400
  1073. ;ViNCEd Edit Page 4 (of 4) :
  1074. 'ViNCEd Editor Seite 4 (von 4) :
  1075.  
  1076. %-----------%
  1077. ;Help...
  1078. 'Hilfe...
  1079.  
  1080. %48
  1081.  
  1082. ;Invisible type ahead
  1083. ;Enable the type ahead. Typing while no input is requested won't go into
  1084. ;the window, it is instead buffered and displayed as soon as some
  1085. ;program wants to read keyboard input.
  1086. 'Asynchroner Tastaturbuffer
  1087.  
  1088. ;Keep bottom of window adjusted
  1089. ;The bottom line of the window will be scrolled down to the bottom border
  1090. ;of the window on resize, giving the old CON: behaiviour.
  1091. 'Unterste Zeile am Rand ausrichten
  1092.  
  1093.  
  1094. ;***************************************************************************
  1095. ;Buttons in the shell page
  1096. ;***************************************************************************
  1097. ;
  1098. ;These pages setup functions related to the shell mode of ViNCEd
  1099. ;like TAB expansion and requesters
  1100. ;
  1101. ;
  1102. ;
  1103. %36
  1104. #432
  1105. ;ViNCEd Shell Page 1 (of 6) :
  1106. 'ViNCEd Shell Seite 1 (von 6) :
  1107.  
  1108. %-----------%
  1109. ;Help...
  1110. 'Hilfe...
  1111.  
  1112. %48
  1113. ;Call macro to close window
  1114. ;Like "Smart Close" in the menu
  1115. 'Makro zum Fensterschließen aufrufen
  1116.  
  1117. ;Prevent accidental window closing
  1118. ;Like "Safer Close" in the menu: Do not close if more than one process
  1119. ;posesses the window
  1120. 'Versehentliches Fensterschließen verhindern
  1121.  
  1122. ;Enable close requester
  1123. ;Turn on the requester warning if the user wants to close a shell
  1124. ;with more than one process running in it.
  1125. ;REMARK: The "safer close" setting must be turned on as well, to
  1126. ;see this requester.
  1127. 'Close-Requester einschalten
  1128.  
  1129. ;Use shell mode by default
  1130. ;Turn on shell mode even if the SHELL keyword is missing in the PATH
  1131. 'Shell-Modus als Voreinstellung
  1132.  
  1133. ;Don't send EOF until everybody waits
  1134. ;A very technical setting, determinates what should happen if more than
  1135. ;one process is in the window and the user closes the window
  1136. 'EOF nur senden, falls alle Prozesse warten
  1137.  
  1138. ;**************************************************************************
  1139. ;
  1140. ; second shell page
  1141. ;
  1142. %36
  1143. #448
  1144. ;ViNCEd Shell Page 2 (of 6) :
  1145. 'ViNCEd Shell Seite 2 (von 6) :
  1146.  
  1147. %-----------%
  1148. ;Help...
  1149. 'Hilfe...
  1150.  
  1151. %48
  1152. ;History buffer wraps around
  1153. ;The operation of the command history and of the TAB expansion. If turned
  1154. ;on, and you reached one end of the history / list of possible expansions,
  1155. ;the buffer will wrap around, i.e. starts again at the beginning
  1156. 'Kommandobuffer ist zyklisch
  1157.  
  1158. ;Keep duplicates in history
  1159. ;If two identical lines are entered, only the first one will go
  1160. ;to the history by default. If this flag is selected, both will
  1161. ;and ViNCEd won't scan any more for identical commands.
  1162. 'Identische Zeilen in die History aufnehmen
  1163.  
  1164. ;Enable scrollers in RAW mode
  1165. ;Allow scroller usage, even in RAW mode. The scrollers are usually
  1166. ;ghosted (disabled), but when this flag is turned on you MAY scroll
  1167. ;in the window. This works like an implicit XTerm mode for RAW windows.
  1168. 'Scroller auch im RAW Modus einschalten
  1169.  
  1170. %32
  1171. ;Cached directories:
  1172. ;The number of directories kept for TAB expansion in the cache
  1173. 'Größe des TAB-Caches :
  1174.  
  1175. ;**************************************************************************
  1176. ;
  1177. ; third shell page
  1178. ;
  1179. %36
  1180. #464
  1181. ;ViNCEd Shell Page 3 (of 6) :
  1182. 'ViNCEd Shell Seite 3 (von 6) :
  1183.  
  1184. %-----------%
  1185. ;Help...
  1186. 'Hilfe...
  1187.  
  1188. %24
  1189. ;%16s flags :
  1190. ;The %16s is replaced by the name of the TAB expand function currently
  1191. ;defined. This is the text printed below the title
  1192. '%16s Einstellungen:
  1193.  
  1194. %-----------%
  1195. ;« Prev
  1196. ;Move to the previous TAB expansion function
  1197. '« Zurück
  1198.  
  1199. ;Next »
  1200. ;Move to the next TAB expansion function
  1201. 'Vorwärts »
  1202.  
  1203. %48
  1204. ;Double TAB requester
  1205. ;Display a requester if TAB is pressed twice within the double 
  1206. ;click interval
  1207. 'Doppel-TAB Dateirequester
  1208.  
  1209. ;First TAB expands fully
  1210. ;If not turned on, ViNCEd will try a partial expansion first.
  1211. 'Erstes TAB ergänzt vollständig
  1212.  
  1213. ;Requester if expansion is ambigious
  1214. ;If turned on, ViNCEd will display a requester if more than one expansion
  1215. ;is possible
  1216. 'Requester, falls Ergänzung nicht eindeutig
  1217.  
  1218. ;Show ViNCEd matches, not directories
  1219. ;Don't use a directory requester for the matches, but show the list
  1220. ;that ViNCEd generated interally. Additional entries in this list (that
  1221. ;can't be shown by a standard requester) are devices, assigns and resident
  1222. ;modules. However, you can't go into a directory with this requester
  1223. 'ViNCEd Ergänzungen in den Requester
  1224.  
  1225. ;**************************************************************************
  1226. ;
  1227. ; forth shell page
  1228. ;
  1229. %36
  1230. #480
  1231. ;ViNCEd Shell Page 4 (of 6) :
  1232. 'ViNCEd Shell Seite 4 (von 6) :
  1233.  
  1234. %-----------%
  1235. ;Help...
  1236. 'Hilfe...
  1237.  
  1238. %24
  1239. ;%16s priorities :
  1240. ;The %16s is replaced by the name of the TAB expand function currently
  1241. ;defined. This is the text printed below the title
  1242. '%16s Prioritäten:
  1243.  
  1244. %-----------%
  1245. ;« Prev
  1246. ;Move to the previous TAB expansion function
  1247. '« Zurück
  1248.  
  1249. ;Next »
  1250. ;Move to the next TAB expansion function
  1251. 'Vorwärts »
  1252.  
  1253. ;
  1254. ;This is now really tight... Uhoh, sorry...
  1255. ;
  1256.  
  1257. %---------%
  1258. ;Files   :
  1259. ;The priority for ordinary files, neither executable nor scripts
  1260. 'Dateien :
  1261.  
  1262. ;Dirs    :
  1263. ;The priority for directories
  1264. 'Ordner  :
  1265.  
  1266. ;Icons   :
  1267. ;The priority for icons
  1268. 'Icons   :
  1269.  
  1270. ;Devices :
  1271. ;The priority of devices
  1272. 'Geräte  :
  1273.  
  1274. ;Assigns :
  1275. ;The priority of directory assigns. All kinds of
  1276. 'Zuweisgn:
  1277.  
  1278. ;Volumes :
  1279. ;The priority of volumes
  1280. 'Medien  :
  1281.  
  1282. ;Path    :
  1283. ;A priority modifier for objects found in the command path
  1284. 'Suchpfad:
  1285.  
  1286. ;C: Dir  :
  1287. ;A priority modifier for objects in the C: (multi-) assign
  1288. 'C: Verzn:
  1289.  
  1290. ;Resident:
  1291. ;The priority for resident segments
  1292. 'Resident:
  1293.  
  1294. ;Scripts :
  1295. ;The priority of scripts (batch-files)
  1296. 'Skripte :
  1297.  
  1298. ;Ex.ables:
  1299. ;The priority for executable programs
  1300. 'Ausführb:
  1301.  
  1302.  
  1303. ;**************************************************************************
  1304. ;
  1305. ; fifth shell page
  1306. ;
  1307. %36
  1308. #496
  1309. ;ViNCEd Shell Page 5 (of 6) :
  1310. 'ViNCEd Shell Seite 5 (von 6) :
  1311.  
  1312. %-----------%
  1313. ;Help...
  1314. 'Hilfe...
  1315.  
  1316. %26
  1317. ;Name only qualifier
  1318. ;Setup the qualifier for icon-drop, used to indicate that the user wants
  1319. ;to insert the name of the dropped icon only.
  1320. 'Nur Namen einfügen
  1321.  
  1322. ;Path only qualifier
  1323. ;The same, but for the path-only icon drop modifier
  1324. 'Nur Pfad einfügen
  1325.  
  1326. ;The names of the keys. Shouldn't change until they are labeled
  1327. ;differently at your local keyboard. All are present twice, once for
  1328. ;the name only and once for path only. Please change both if you
  1329. ;have to change them at all.
  1330.  
  1331. %22
  1332.  
  1333. ;Shift
  1334. 'Shift
  1335.  
  1336. ;Shift
  1337. 'Shift
  1338.  
  1339. ;Control
  1340. 'Control
  1341.  
  1342. ;Control
  1343. 'Control
  1344.  
  1345. ;Alt
  1346. 'Alt
  1347.  
  1348. ;Alt
  1349. 'Alt
  1350.  
  1351. ;Amiga
  1352. ;The right amiga key
  1353. 'Amiga
  1354.  
  1355. ;Amiga
  1356. 'Amiga
  1357.  
  1358. ;**************************************************************************
  1359. ;
  1360. ; sixth shell page
  1361. ;
  1362. %36
  1363. #528
  1364. ;ViNCEd Shell Page 6 (of 6) :
  1365. 'ViNCEd Shell Seite 6 (von 6) :
  1366.  
  1367. %-----------%
  1368. ;Help...
  1369. 'Hilfe...
  1370.  
  1371. %60
  1372. ;TAB expansion requester position
  1373. ;
  1374. ;The secondary headline of this page
  1375. ;
  1376. 'TAB Erweiterung - Requesterposition
  1377.  
  1378. %-------------%
  1379. ;Left Edge:
  1380. ;
  1381. ;The offset of the requester from the left ViNCEd window edge,
  1382. ;given in pixel, may be negative
  1383. ;
  1384. 'Linke Kante:
  1385.  
  1386. ;Top Edge:
  1387. ;
  1388. ;The offset of the requester top edge from the top edge of the ViNCEd
  1389. ;window, in pixel, may be negative
  1390. ;
  1391. 'Obere Kante:
  1392.  
  1393. ;Width:
  1394. ;
  1395. ;Width of the requester in pixels. 0 is default.
  1396. ;
  1397. 'Breite:
  1398.  
  1399. ;Height:
  1400. ;
  1401. ;Height of the requester in pixels. 0 is default.
  1402. ;
  1403. 'Höhe:
  1404.  
  1405. %48
  1406. ;
  1407. ;Do not place file requester
  1408. ;
  1409. ;If this is checked, the above coordinates are ignored. The
  1410. ;requester position is then left to asl or reqtools.
  1411. ;
  1412. 'Dateirequester nicht positionieren
  1413.  
  1414. ;***************************************************************************
  1415. ;Buttons in the window page
  1416. ;***************************************************************************
  1417. ;
  1418. ;This page is used to setup the size of various buffers for ViNCEd,
  1419. ;namely the command history and the visual history, upper and lower part.
  1420. ;
  1421. ;first window page
  1422. ;
  1423. ;
  1424. %36
  1425. #544
  1426. ;ViNCEd Window Page 1 (of 3) :
  1427. 'ViNCEd Fenster Seite 1 (von 3) :
  1428.  
  1429. %-----------%
  1430. ;Help...
  1431. 'Hilfe...
  1432.  
  1433.  
  1434. %26
  1435. ;History lines :
  1436. ;The size of the command history in lines
  1437. 'Größe der History :
  1438.  
  1439. ;Upper Display size :
  1440. ;The number of lines that are kept above the visual window, i.e. maximal
  1441. ;number of lines scrolled off the window.
  1442. 'Obere Zeilen  :
  1443.  
  1444. ;Lower Display size :
  1445. ;The number of lines kept in the opposide direction, including the lines
  1446. ;actually visible plus the lines kept below the visible window.
  1447. 'Untere Zeilen :
  1448.  
  1449. %--------%
  1450. ;Monitor
  1451. ;The name of the screen mode button
  1452. 'Monitor
  1453.  
  1454. ;Font
  1455. ;The contents of the font selection button
  1456. 'Schrift
  1457.  
  1458.  
  1459. ;***************************************************************************
  1460. ;
  1461. ;second window page
  1462. ;
  1463. ;
  1464. %36
  1465. #560
  1466. ;ViNCEd Window Page 2 (of 3) :
  1467. 'ViNCEd Fenster Seite 2 (von 3) :
  1468.  
  1469. %-----------%
  1470. ;Help...
  1471. 'Hilfe...
  1472.  
  1473. %17
  1474. ;Sample color
  1475. ;Title of the box with the sample of the new color you can choose with
  1476. ;the sliders for custom screens
  1477. 'Farbbeispiel
  1478.  
  1479. ;Color    :%s
  1480. ;The current pen to be edited. The cryptic "%s" gets expanded to a
  1481. ;number between 0 and 15, i.e. the actual pen number, or Cc for
  1482. ;the cursor color.
  1483. 'Farbe    :%s
  1484.  
  1485. %-----------%
  1486.  
  1487. ;Red    :
  1488. ;The title in front of the slider for the red component
  1489. 'Rot    :
  1490.  
  1491. ;Green  :
  1492. ;Same for the green slider
  1493. 'Grün   :
  1494.  
  1495. ;Blue   :
  1496. ;Same for the blue slider.
  1497. 'Blau   :
  1498.  
  1499. ;The next ones display a percent value, namely the contribution of
  1500. ;red,green and blue, respectively, to the current color.
  1501. ;There's usually no need to change them...
  1502. ;%% is expanded into a single percent sign, by the way.
  1503. ;%-3ld results in a three digit decimal number.
  1504.  
  1505. %--------%
  1506. ;%-3ld%%
  1507. '%-3ld%%
  1508.  
  1509. ;%-3ld%%
  1510. '%-3ld%%
  1511.  
  1512. ;%-3ld%%
  1513. '%-3ld%%
  1514.  
  1515. %30
  1516.  
  1517. ;Load this register
  1518. ;A checkmark, used to indicate if the current pen should be set by
  1519. ;ViNCEd. The sliders are unaccessable unless this one is checked.
  1520. 'Dieses Register setzen
  1521.  
  1522. ;Set ANSI mapping
  1523. ;If set, this color
  1524. ;defines not an hardware register, but the software ANSI mapping, i.e.
  1525. ;the ANSI pen of the same color index.
  1526. 'ANSI Farbe definieren
  1527.  
  1528. %-----------%
  1529. ;« Prev
  1530. ;Move to the previous pen
  1531. '« Zurück
  1532.  
  1533. ;Next »
  1534. ;Edit the next pen
  1535. 'Vorwärts »
  1536.  
  1537. ;***************************************************************************
  1538. ;
  1539. ;third window page
  1540. ;
  1541. ;
  1542. %36
  1543. #576
  1544. ;ViNCEd Window Page 3 (of 3) :
  1545. 'ViNCEd Fenster Seite 3 (von 3) :
  1546.  
  1547. %-----------%
  1548. ;Help...
  1549. 'Hilfe...
  1550.  
  1551. %48
  1552. ;Don't add close gadget by default
  1553. ;If turned on, you must explicitly ask for a CLOSE gadget in the path to
  1554. ;get one. By default (since 1.00), ViNCEd windows come always with a 
  1555. ;close gadget.
  1556. 'Close-Gadget nur auf Anfrage erzeugen
  1557.  
  1558. ;Don't add iconify gadget by default
  1559. ;If turned on, you must ask for a iconify gadget. The default is that all
  1560. ;windows that appear on the workbench or that have the FALLBACK option
  1561. ;turned on will get an iconifier.
  1562. 'Iconifizierungs-Gadget nur auf Anfrage
  1563.  
  1564. ;Disable horizontal scroller
  1565. ;Prevents ViNCEd from adding a horizontal scroller by default.
  1566. ;The scroller can be requested with a PROPX in the window open path
  1567. ;explicitly.
  1568. 'Keinen horizontalen Scroller
  1569.  
  1570. ;Disable vertical scroller
  1571. ;Same for the vertical scroll bar.
  1572. 'Keinen vertikalen Scroller
  1573.  
  1574.  
  1575. ;***************************************************************************
  1576. ;Buttons in the timing page
  1577. ;***************************************************************************
  1578. ;
  1579. ;Various timing rates are setup with this page
  1580. ;
  1581. ;
  1582. #592
  1583. ;ViNCEd Timing Page :
  1584. 'ViNCEd Timing Seite :
  1585.  
  1586. %-----------%
  1587. ;Help...
  1588. 'Hilfe...
  1589.  
  1590. %---------------------------%
  1591. ;Cursor blink speed        :
  1592. ;Setup the blink interval. Units are milliseconds (1 ms = 1 thousands of a second)
  1593. 'Cursor-Blinkzeit (in ms)  :
  1594.  
  1595. ;Vertical scroll threshold :
  1596. ;If vertical scrolling is slower than this, ViNCEd will delay the refresh 
  1597. ;to speedup scrolling. Again measured in ms.
  1598. 'Schranke für Scrollzeit   :
  1599.  
  1600. ;Rebuild delay             :
  1601. ;If this time has passed, ViNCEd will refresh the window. Again in ms.
  1602. 'Zeit bis Wiederaufbau     :
  1603.  
  1604. ;Intuition delay (1.3 only):
  1605. ;Only used with kickstart 1.3 and below. This should be setup to the
  1606. ;usual time needed for intuition to do a window operation, i.e. resize.
  1607. ;Usually the interval of the input device, i.e. 1/10th of a second.
  1608. 'Intuition-Verzögerung(1.3):
  1609.  
  1610. %48
  1611. ;Allow delayed window refresh
  1612. ;A checkmark. Must be turned on to allow a delayed refresh and to make use
  1613. ;of the settings above.
  1614. 'Verzögerter Wiederaufbau
  1615.  
  1616. ;***************************************************************************
  1617. ;Buttons in the system pages
  1618. ;***************************************************************************
  1619. ;
  1620. ;The four system pages setup internal ViNCEd stuff that does not fit
  1621. ;into the other categories or should never be changed
  1622. ;
  1623. ;
  1624. %36
  1625. #608
  1626. ;ViNCEd System Page 1 (of 4) :
  1627. 'ViNCEd System Seite 1 (von 4) :
  1628.  
  1629. %-----------%
  1630. ;Help...
  1631. 'Hilfe...
  1632.  
  1633. %22
  1634. ;ViNCEd Guide Path :
  1635. ;This gadget is used to setup the path of the VNC.guide.
  1636. 'ViNCED Hilfe-Datei :
  1637.  
  1638. %48
  1639. ;Chunky pixel graphics
  1640. ;If set, ViNCEd does not use the bitplane mask to scroll only used
  1641. ;bitplanes. Useful for gfx cards.
  1642. ;New in 3.70: this one is obsolete and no longer required.
  1643. 'Chunky Pixel Graphik
  1644.  
  1645. ;Line break at right border
  1646. ;Break DOS output at the right window border. This line break operation
  1647. ;is a bit different from what CON: does, since it is permanently. Lines
  1648. ;won't get reorganized if the window gets resized.
  1649. ;This one shouldn't be turned on!
  1650. 'Zeilenumbruch am Fensterrand
  1651.  
  1652. ;Inhibit horiz. scrolling by DOS output
  1653. ;Do not scroll the window by DOS output. This avoids some flicker, but
  1654. ;may move the cursor to invisible areas.
  1655. ;This one shouldn't be turned on!
  1656. 'Kein horizontales Scrolling durch das DOS
  1657.  
  1658. ;VT-220 compatibility mode
  1659. ;Some control sequences are interpretated differently if this is turned on.
  1660. ;Also not useful if you want to run a shell in this window.
  1661. 'VT-220 Kompatibilitätsmodus
  1662.  
  1663. ;Word wrap workaround
  1664. ;New in 3.70: Enables the NCurses Fix: The word wrap will already
  1665. ;happen at the window border, not one character beyond as it should
  1666. ;for VT-xxx compatibility
  1667. 'Fehlerumgehung für Zeilenumbruch
  1668.  
  1669. ;***************************************************************************
  1670. ;
  1671. ; second system page
  1672. ;
  1673. %36
  1674. #624
  1675. ;ViNCEd System Page 2 (of 4 ) :
  1676. 'ViNCEd System Seite 2 (von 4) :
  1677.  
  1678. %-----------%
  1679. ;Help...
  1680. 'Hilfe...
  1681.  
  1682. %48
  1683. ;Destructive DEL and BS
  1684. ;Usually a printed backspace moves the cursor backwards and does nothing else.
  1685. ;If turned on, it will erase characters. The DEL is usually printed as a
  1686. ;smear symbol. If turned on, it will erase characters.
  1687. ;Not useful for the shell!
  1688. 'DEL und BS löschen beim Ausdruck
  1689.  
  1690. ;Insertion mode for DOS output
  1691. ;If turned on, DOS output will be inserted into the window data instead of
  1692. ;overwriting it. Since this is never done by CON:, leave this flag
  1693. ;off for the shell.
  1694. 'Einfügemodus für DOS Ausgaben
  1695.  
  1696. ;Notify DOS about paste
  1697. ;Do not paste if the user asks to do so, instead send a paste request
  1698. ;to the reading program. THIS IS NOT USEFUL FOR THE SHELL.
  1699. 'Paste Kommando an DOS schicken
  1700.  
  1701. ;Extended colors instead of bold
  1702. ;Use the bold attribute to map ANSI colors 0..7 to ViNCEd extended
  1703. ;colors 8..15.
  1704. 'Erweiterter Farbsatz statt Fettdruck
  1705.  
  1706. ;No insertion into border
  1707. ;CSI L and CSI M do not insert into the lower display buffer
  1708. 'Nicht in den Rand hinein einfügen
  1709.  
  1710.  
  1711. ;***************************************************************************
  1712. ;
  1713. ; third system page
  1714. ;
  1715. %36
  1716. #640
  1717. ;ViNCEd System Page 3 (of 4) :
  1718. 'ViNCEd System Seite 3 (von 4) :
  1719.  
  1720. %-----------%
  1721. ;Help...
  1722. 'Hilfe...
  1723.  
  1724.  
  1725. %---------------%
  1726. ;Quit shell    :
  1727. ;This is a system macro invoked if the user presses the close window
  1728. ;gadget in an active shell.
  1729. 'Beende Shell  :
  1730.  
  1731. ;Quit program  :
  1732. ;Another system macro that is called if a running program in a ViNCEd shell
  1733. ;should be terminated. Called if the close gadget is pressed and a command
  1734. ;is loaded.
  1735. 'Beende Progr. :
  1736.  
  1737. ;New Window    :
  1738. ;A system macro expanded by the "New Window" item in the project menu.
  1739. 'Neues Fenster :
  1740.  
  1741. ;Fork new shell:
  1742. ;Another macro used to build a new shell on Ctrl-Z. This one is unique 
  1743. ;since it is not expanded as a keyboard sequence, but Execute()-d 
  1744. ;instead (so use \n to terminate it instead of \r). Should be something
  1745. ;like newcli.
  1746. 'Shell erzeugen:
  1747.  
  1748. ;Get Help      :
  1749. ;A macro that should call the VNC.guide. Usually set to "SetVNC HELP"
  1750. 'Hilfe aufrufen:
  1751.  
  1752. ;***************************************************************************
  1753. ;
  1754. ; fourth system page
  1755. ;
  1756. %36
  1757. #656
  1758. ;ViNCEd System Page 4 (of 4) :
  1759. 'ViNCEd System Seite 4 (von 4) :
  1760.  
  1761. %-----------%
  1762. ;Help...
  1763. 'Hilfe...
  1764.  
  1765.  
  1766. %---------------%
  1767.  
  1768. ;Edit settings :
  1769. ;A macro used to invoke the prefs editor. Usually "SetVNC". Called if
  1770. ;the user select the "Settings" item in the project menu.
  1771. 'Einstellungen :
  1772.  
  1773. ;Icon path     :
  1774. ;This is the path of the icon that is displayed if a ViNCEd window gets
  1775. ;iconified. It is a standard workbench icon, without the ".info".
  1776. 'Iconpfad      :
  1777.  
  1778. ;Icon title    :
  1779. ;The title that is shown under the icon. Defaults to the window title or
  1780. ;to the title that is set by some XTerm control sequence.
  1781. 'Icontitel     :
  1782.  
  1783. ;Default path  :
  1784. ;The window open path used if no path is given, i.e. the window is
  1785. ;opened just by the plain device name
  1786. 'Standardpfad  :
  1787.  
  1788. ;************************************************************************
  1789. ;
  1790. ;So much about the "page descriptors"
  1791. ;
  1792. ;we continue with the names of the TAB expansion functions
  1793. ;
  1794. #784
  1795. %----------------%
  1796.  
  1797. ;TAB expand
  1798. ;The default TAB expansion function
  1799. 'TAB-Ergänzung
  1800.  
  1801. ;Expand short
  1802. ;Dedicated for short path searching, 2nd function
  1803. 'Kurzer Pfad
  1804.  
  1805. ;Devices only
  1806. ;Dedicated for devices only, 3rd function
  1807. 'Nur Geräte
  1808.  
  1809. ;Directories only
  1810. ;Dedicated for drawers only, 4th function
  1811. 'Nur Ordner
  1812.  
  1813. ;Icons only
  1814. ;Dedicated for icons only, 5th function
  1815. 'Nur Icons
  1816.  
  1817. ;Alternate expand
  1818. ;Dedicated for whatever is left, 6th function
  1819. 'weitere Ergnz.
  1820.  
  1821. ;************************************************************************
  1822. ;
  1823. ; this is the set of keyboard function names
  1824. ; they appear in the second keyboard page in the listview
  1825. ; requester
  1826. ;
  1827. #800
  1828. ;
  1829. ;
  1830. %---------------------------%
  1831.  
  1832. ;we start with some obvious functions
  1833.  
  1834. ;Cursor Left
  1835. 'Cursor links
  1836.  
  1837. ;Cursor Right
  1838. 'Cursor rechts
  1839.  
  1840. ;Cursor Up
  1841. 'Cursor hoch
  1842.  
  1843. ;Cursor Down
  1844. 'Cursor runter
  1845.  
  1846. ;History Up
  1847. ;One position up in the history buffer
  1848. 'Kommandobuffer hoch
  1849.  
  1850. ;History Down
  1851. ;One position downwards in the history
  1852. 'Kommandobuffer runter
  1853.  
  1854. ;Search Partial Upwards
  1855. ;Use the command line from the start of line up to the cursor position
  1856. ;and use this part as pattern for the search in the history
  1857. 'Anfang aufwärts suchen
  1858.  
  1859. ;Search Partial Downwds
  1860. ;ditto, but downwards
  1861. 'Anfang abwärts suchen
  1862.  
  1863. ;Search History Upwards
  1864. ;Use the command line as pattern for the history buffer and the cursor
  1865. ;position as wildcard position to search in the history
  1866. 'Aufwärts suchen
  1867.  
  1868. ;Search History Downwds
  1869. ;ditto, but downwards
  1870. 'Abwärts suchen
  1871.  
  1872. ;Half Screen Left
  1873. ;Move the cursor one half screen to the left
  1874. 'Halbes Fenster nach links
  1875.  
  1876. ;Half Screen Right
  1877. ;Move the cursor one half screen to the right
  1878. 'Halbes Fenster nach rechts
  1879.  
  1880. ;Half Screen Up
  1881. ;Move the cursor one half screen upwards
  1882. 'Halbes Fenster nach oben
  1883.  
  1884. ;Half Screen Down
  1885. ;Move the cursor one half screen downwards
  1886. 'Halbes Fenster nach unten
  1887.  
  1888. ;To Left Border
  1889. ;Move the cursor to the extreme left
  1890. 'An den linken Rand
  1891.  
  1892. ;To Right Border
  1893. ;Move the cursor to the extreme right
  1894. 'An den rechten Rand
  1895.  
  1896. ;To Top of Screen
  1897. ;Move the cursor to the beginning of the buffer
  1898. 'An das obere Ende
  1899.  
  1900. ;To Bottom of Screen
  1901. ;Move the cursor to the end of the display buffer
  1902. 'An das untere Ende
  1903.  
  1904. ;Prev Word
  1905. ;Move the cursor to the left to the beginning of the previous word
  1906. 'Auf das vorherige Wort
  1907.  
  1908. ;Next Word
  1909. ;Move the cursor to the right to the beginning of the next word
  1910. 'Auf das nächste Wort
  1911.  
  1912. ;Prev Component
  1913. ;Move the cursor to the previous path component
  1914. 'Auf vorherige Komponente
  1915.  
  1916. ;Next Component
  1917. ;Move the cursor to the next path component
  1918. 'Auf folgende Komponente
  1919.  
  1920. ;Home
  1921. ;Move cursor to the left of the topmost row
  1922. 'Nach oben links
  1923.  
  1924. ;End
  1925. ;Move the cursor to the right of the bottommost row
  1926. 'Nach unten rechts
  1927.  
  1928. ;Scroll Up
  1929. ;Scroll the window one line upwards, do not move the cursor
  1930. 'Nach oben rollen
  1931.  
  1932. ;Scroll Down
  1933. ;ditto, downwards
  1934. 'Nach unten rollen
  1935.  
  1936. ;Scroll Half Screen Up
  1937. ;Scroll the window one half screen upwards, do not move the cursor
  1938. '1/2 Fenster hoch rollen
  1939.  
  1940. ;Scroll Half Screen Down
  1941. ;ditto, but downwards
  1942. '1/2 Fenster runter rollen
  1943.  
  1944. ;
  1945. ;spare room available here....
  1946. ;
  1947. #832
  1948.  
  1949. ;Send Inputs
  1950. ;Send the user inputs to the receiver, i.e. the shell
  1951. 'Eingaben abschicken
  1952.  
  1953. ;Split Line
  1954. ;Split the current input line at the cursor position
  1955. 'Zeile umbrechen
  1956.  
  1957. ;Insert ^J
  1958. ;Insert a literal ^J (ASCII 0x0a) into the buffer
  1959. '^J einfügen
  1960.  
  1961. ;Send Complete Line
  1962. ;Send all data in the line, even output.
  1963. 'Ganze Zeile abschicken
  1964.  
  1965. ;Line Feed
  1966. ;Just a plain LF, without sending anything
  1967. 'Zeilenvorschub
  1968.  
  1969. ;
  1970. ;spare room here...
  1971. ;
  1972.  
  1973.  
  1974. #850
  1975. ;TAB Forewards
  1976. ;Move the cursor one TAB position forwards
  1977. 'TAB vorwärts
  1978.  
  1979. ;TAB Move Backwards
  1980. ;Move the cursor to the next tabulator stob leftwards
  1981. 'TAB rückwärts
  1982.  
  1983. ;Expand Path
  1984. ;The TAB path expansion, first key
  1985. 'Ergänze den Dateipfad
  1986.  
  1987. ;Expand Backwards
  1988. ;ditto, but backwards
  1989. 'Ergänze, rückwärts
  1990.  
  1991. ;Expand Short
  1992. ;The 2nd TAB expansion function, dedicated for short search paths
  1993. 'Ergänze, kurz
  1994.  
  1995. ;Expand Short Bkwds
  1996. ;ditto, but backwards
  1997. 'Ergänze, kurz, rückwärts
  1998.  
  1999. ;Expand Devices
  2000. ;The 3rd TAB expansion function, dedicated for devices
  2001. 'Ergänze Gerätenamen
  2002.  
  2003. ;Expand Devs Bkwds
  2004. ;ditto, but backwards
  2005. 'Ergänze Geräte, rückwärts
  2006.  
  2007. ;Expand Dirs
  2008. ;The 4th TAB expansion function, dedicated for directory search
  2009. 'Ergänze Verzeichnisnamen
  2010.  
  2011. ;Expand Dirs Bkwds
  2012. ;ditto, but backwards
  2013. 'Ergänze Verz., rückwärts
  2014.  
  2015. ;Expand Icons
  2016. ;The 5th TAB expansion function, dedicated for icon search
  2017. 'Ergänze Iconnamen
  2018.  
  2019. ;Expand Icons Bkwds
  2020. ;ditto, but backwards
  2021. 'Ergänze Icons, rückwärts
  2022.  
  2023. ;Expand Alt
  2024. ;Alternate expansion function, for whatever is left
  2025. 'Weitere Ergänzung
  2026.  
  2027. ;Expand Alt Bkwds
  2028. ;ditto, backwards
  2029. 'Weitere Ergnz. rückwärts
  2030.  
  2031. ;
  2032. ;we continue with
  2033. #864
  2034. ;
  2035.  
  2036. ;Send ^C
  2037. ;Send the signal 12 to the foreground process
  2038. 'Verschicke ^C
  2039.  
  2040. ;Send ^D
  2041. ;ditto, but signal 13
  2042. 'Verschicke ^D
  2043.  
  2044. ;Send ^E
  2045. ;ditto, but signal 14
  2046. 'Verschicke ^E
  2047.  
  2048. ;Send ^F
  2049. ;ditto, but signal 15
  2050. 'Verschicke ^F
  2051.  
  2052. ;Send ^C to All
  2053. ;Send the signal bit 12 to all processes, even processes launched with RUN
  2054. 'Verschicke ^C an alle
  2055.  
  2056. ;Send ^D to All
  2057. ;ditto, but signal 13
  2058. 'Verschicke ^D an alle
  2059.  
  2060. ;Send ^E to All
  2061. ;ditto, but signal 14
  2062. 'Verschicke ^E an alle
  2063.  
  2064. ;Send ^F to All
  2065. ;ditto, but signal 15
  2066. 'Verschicke ^F an alle
  2067.  
  2068. ;
  2069. ; some spare room here...
  2070. ;
  2071. #880
  2072. ;
  2073. ;
  2074.  
  2075.  
  2076. ;Delete Forewards
  2077. ;the standard DEL function
  2078. 'Vorwärts löschen
  2079.  
  2080. ;Delete Backwards
  2081. ;the standard backspace function
  2082. 'Rückwärts löschen
  2083.  
  2084. ;Delete Full Line
  2085. ;clear the entire line, inputs and outputs
  2086. 'Ganze Zeile löschen
  2087.  
  2088. ;Cut Full Line
  2089. ;ditto, and copy it to the yank buffer
  2090. 'Ganze Zeile ausschneiden
  2091.  
  2092. ;Delete Inputs
  2093. ;remove only user inputs from the current input line
  2094. 'Eingaben löschen
  2095.  
  2096. ;Cut Inputs
  2097. ;ditto, and copy them to the yank buffer
  2098. 'Eingaben ausschneiden
  2099.  
  2100. ;Delete Word Fwds
  2101. ;delete the word right of the cursor
  2102. 'nächstes Wort löschen
  2103.  
  2104. ;Cut Word Fwds
  2105. ;ditto, but copy the word to the yank buffer
  2106. 'nächstes Wort ausschneiden
  2107.  
  2108. ;Delete Word Bkwds
  2109. ;delete the word to the right of the cursor
  2110. 'vorheriges Wort löschen
  2111.  
  2112. ;Cut Word Bkwds
  2113. ;ditto, but copy the word to the yank buffer
  2114. 'vorh. Wort ausschneiden
  2115.  
  2116. ;Delete Component Fwds
  2117. ;delete the next path component
  2118. 'nächste Komponente löschen
  2119.  
  2120. ;Cut Component Fwds
  2121. ;ditto, and copy to it to the yank buffer
  2122. 'nächste Komp. ausschneiden
  2123.  
  2124. ;Delete Component Bkwds
  2125. ;delete the previous path component
  2126. 'vorh. Komponente löschen
  2127.  
  2128. ;Cut Component Bkwds
  2129. ;ditto, and copy it to the yank buffer
  2130. 'vorh. Komp. ausschneiden
  2131.  
  2132. ;Delete End Of Line
  2133. ;delete all characters from the cursor position to the end of the line
  2134. 'Zeilenende löschen
  2135.  
  2136. ;Cut End of Line
  2137. ;ditto, and copy it to the edit buffer
  2138. 'Zeilenende ausschneiden
  2139.  
  2140. ;Delete Start of Line
  2141. ;delete all characters up to the cursor position
  2142. 'Zeilenanfang löschen
  2143.  
  2144. ;Cut Start of Line
  2145. ;ditto, and copy them to the yank buffer
  2146. 'Zeilenanfang ausschneiden
  2147.  
  2148. ;Delete End of Display
  2149. ;clear from the cursor downwards all buffer lines
  2150. 'Bis zum Bufferende löschen
  2151.  
  2152. ;Form Feed
  2153. ;clear the lower buffer completely
  2154. 'Seitenvorschub
  2155.  
  2156. ;Clear Screen
  2157. ;clear the screen, and sent an empty line to request another prompt
  2158. 'Bildschirm löschen
  2159.  
  2160.  
  2161. ;
  2162. ;menu functions follow
  2163. ;
  2164. #912
  2165.  
  2166. ;Cut
  2167. ;cut the marked block to the clipboard
  2168. 'Ausschneiden
  2169.  
  2170. ;Copy
  2171. ;copy the marked block to the clipboard
  2172. 'Kopieren
  2173.  
  2174. ;Paste
  2175. ;paste the clipboard contents
  2176. 'Einfügen
  2177.  
  2178. ;Hide
  2179. ;hide the buffer marker
  2180. 'Verbergen
  2181.  
  2182. ;Select All
  2183. ;select the complete buffer contents in a block
  2184. 'Alles auswählen
  2185.  
  2186. ;Copy Quiet
  2187. ;copy the marked block, but do not hide it
  2188. 'Verborgen kopieren
  2189.  
  2190. ;Reset
  2191. ;reset the terminal, reload colors, the CSI settings and others.
  2192. ;does not clear the history and the upper line buffer
  2193. 'Zurücksetzen
  2194.  
  2195. ;Full Reset
  2196. ;ditto, but clears the history and the review buffer completely
  2197. 'Vollständig zurücksetzen
  2198.  
  2199. ;
  2200. ;
  2201. #928
  2202. ;
  2203. ; remaining miscelaneous
  2204. ;
  2205.  
  2206. ;Toggle ESC
  2207. ;Toggle the ESC flag which determinates whether the next control character
  2208. ;is inserted directly
  2209. 'ESC umschalten
  2210.  
  2211. ;Toggle NumLock
  2212. ;disable / enable cursor control by the numeric keypad
  2213. 'NumLock umschalen
  2214.  
  2215. ;Toggle Overwrite
  2216. ;disable/enable the overwrite flag
  2217. 'Überschreiben umschalten
  2218.  
  2219. ;Suspend
  2220. ;inhibit further output, also known as Xoff
  2221. 'Ausgabe anhalten
  2222.  
  2223. ;Resume
  2224. ;reenable output, Xon, ^Q
  2225. 'Ausgabe fortsetzen
  2226.  
  2227. ;Abort Expansion
  2228. ;stop a TAB expansion in progress. This is implicit for most keys.
  2229. 'TAB-Erweiterung anhalten
  2230.  
  2231. ;Scroll to Cursor
  2232. ;snap the window back to the cursor. Implicit for most keys
  2233. 'Fenster zum Cursor rollen
  2234.  
  2235. ;Rewind History
  2236. ;set the history pointer back to the end of the history list
  2237. 'History zurückspulen
  2238.  
  2239. ;Yank
  2240. ;insert the yank buffer
  2241. 'Yank-Buffer einfügen
  2242.  
  2243. ;Generate EOF
  2244. ;insert a file end into the output buffer, or invoke a macro, dependent on
  2245. ;the setting
  2246. 'EOF erzeugen
  2247.  
  2248. ;
  2249. ;two slots reserved here...
  2250. ;
  2251. #940
  2252. ;
  2253.  
  2254.  
  2255. ;Display Beep
  2256. ;blink the screen
  2257. 'Bildschirmblinken
  2258.  
  2259. ;Toggle Pause
  2260. ;toggle suspend / resume printing
  2261. 'Blockierung umschalten
  2262.  
  2263. ;Help
  2264. ;request help by calling a macro
  2265. 'Hilfe anfordern
  2266.  
  2267. ;Fork New Shell
  2268. ;the ^Z function, create a new shell in the current window
  2269. 'Neue Shell erzeugen
  2270.  
  2271. ;Insert CSI
  2272. ;place a CSI character in the window
  2273. 'CSI einfügen
  2274.  
  2275. ;Insert ESC
  2276. ;place a ESC character in the window
  2277. 'ESC einfügen
  2278.  
  2279.  
  2280. ;************************************************************************
  2281. ;
  2282. ; we're now almost done. 
  2283. ; The names of the keys follow.
  2284. ;
  2285. %------------------------%
  2286.  
  2287. #1295
  2288. ;Num0
  2289. 'Num0
  2290.  
  2291. #1309
  2292. ;Num1
  2293. 'Num1
  2294.  
  2295. ;Num2
  2296. 'Num2
  2297.  
  2298. ;Num3
  2299. 'Num3
  2300.  
  2301. #1325
  2302. ;Num4
  2303. 'Num4
  2304.  
  2305. ;Num5
  2306. 'Num5
  2307.  
  2308. ;Num6
  2309. 'Num6
  2310.  
  2311. #1340
  2312. ;Num.
  2313. 'Num.
  2314.  
  2315. ;Num7
  2316. 'Num7
  2317.  
  2318. ;Num8
  2319. 'Num8
  2320.  
  2321. ;Num9
  2322. 'Num9
  2323.  
  2324. #1345
  2325. ;Backspace
  2326. 'Rücktaste
  2327.  
  2328. ;Tab
  2329. 'Tabulator
  2330.  
  2331. ;Enter
  2332. ;(the thing on the numeric keypad)
  2333. 'Enter
  2334.  
  2335. ;Return
  2336. 'Eingabetaste
  2337.  
  2338. ;Esc
  2339. 'Esc
  2340.  
  2341. ;Del
  2342. 'Löschtaste
  2343.  
  2344. #1354
  2345. ;Num-
  2346. 'Num-
  2347.  
  2348. #1356
  2349. ;Up
  2350. 'Cursor hoch
  2351.  
  2352. ;Down
  2353. 'Cursor runter
  2354.  
  2355. ;Right
  2356. 'Cursor rechts
  2357.  
  2358. ;Left
  2359. 'Cursor links
  2360.  
  2361. ;F1
  2362. 'F1
  2363.  
  2364. ;F2
  2365. 'F2
  2366.  
  2367. ;F3
  2368. 'F3
  2369.  
  2370. ;F4
  2371. 'F4
  2372.  
  2373. ;F5
  2374. 'F5
  2375.  
  2376. ;F6
  2377. 'F6
  2378.  
  2379. ;F7
  2380. 'F7
  2381.  
  2382. ;F8
  2383. 'F8
  2384.  
  2385. ;F9
  2386. 'F9
  2387.  
  2388. ;F10
  2389. 'F10
  2390.  
  2391. ;Num[
  2392. 'Num[
  2393.  
  2394. ;Num]
  2395. 'Num]
  2396.  
  2397. ;Num/
  2398. 'Num/
  2399.  
  2400. ;Num*
  2401. 'Num*
  2402.  
  2403. ;Num+
  2404. 'Num+
  2405.  
  2406. ;Help
  2407. 'Hilfetaste
  2408.  
  2409. ;
  2410. ;
  2411. ; If you arrived here, congratulatons! You're done now!
  2412. ;
  2413. ;That's all folks!
  2414. ;
  2415.